1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .notificationPage {
- :global(.adm-tabs-tab-list) {
- margin: 0 0.12rem 0.12rem;
- background-color: #1f2830;
- border-radius: 0.1rem;
- height: 0.4rem;
- position: relative;
- }
- :global(.adm-tabs) {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: stretch;
- }
- :global(.adm-tabs-content) {
- flex: 1;
- min-height: 0;
- overflow: auto;
- padding: 0;
- }
- :global(.adm-tabs-tab) {
- padding-bottom: 0;
- }
- // :global(.adm-tabs-tab-line) {
- // bottom: 0.08rem;
- // }
- :global(.adm-tabs-tab-line) {
- top: 0;
- bottom: 0;
- background: #11de68;
- height: 100%;
- border-radius: 0.1rem;
- }
- :global(.adm-tabs-tab-wrapper) {
- flex: 1;
- padding: 0;
- height: 100%;
- }
- :global(.adm-tabs-tab) {
- padding: 0;
- margin: 0;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100%;
- color: #5d7284;
- font-weight: 700;
- }
- :global(.adm-tabs-tab-active) {
- color: #122f23;
- }
- }
- .header {
- background: #1e252b;
- }
|